Multiple Integrals
Cover Page
Artifacts
| Artifact #1 | Change of Variables in Multiple Integrals (HW15 #3), chosen from homework I did well on |
| Artifact #2 | Triple Integrals in Cylindrical Coordinates (HW14 #1), chosen from homework I did well on |
Sub-outcome coverage
| Sub Outcome | Artifact #1 | Artifact #2 |
|---|---|---|
| Evaluating by hand: compute double or triple integrals over general regions whose boundaries are described by curves or surfaces. | Yes | Yes |
| Coordinate systems: draw, set up, and evaluate triple integrals in cylindrical and/or spherical coordinates. | Yes | |
| Change of Variables: construct transformations, compute their Jacobians, and apply the Change of Variables theorem. | Yes |
Artifact 1
Problem
Evaluate \[ \iint_{R} \frac{-5x - 6y}{4x + 2y}\, dA, \] where \(R\) is the parallelogram enclosed by the lines \[ -5x - 6y = 0, \qquad -5x - 6y = 9, \qquad 4x + 2y = 1, \qquad 4x + 2y = 8. \]
Solution:
Parallelograms are a pain to integrate over directly, so we switch to a change of variables. The boundary equations already suggest the new variables, which is why this artifact fits the change of variables sub outcome.
One good choice would be: \[ u = -5x - 6y, \qquad v = 4x + 2y. \] This turns the four boundary lines into the much friendlier bounds: \[ u = 0, \qquad u = 9, \qquad v = 1, \qquad v = 8. \]
Recalling the formula for change of variables:
Change of variables
\[ \iint_{R} f(x, y)\, dA = \iint_{R'} f\big(x(u, v), y(u, v)\big) \left| \frac{\partial(x, y)}{\partial(u, v)} \right| du\, dv. \]
To use it we need the Jacobian. This is the part of the process that feels most natural to me because it turns the transformation into the correct area-scaling factor: \[ \frac{\partial(u, v)}{\partial(x, y)} = \begin{vmatrix} -5 & -6 \\ \phantom{-}4 & \phantom{-}2 \end{vmatrix} = -10 + 24 = 14, \] \[ \frac{\partial(x, y)}{\partial(u, v)} = \frac{1}{14}, \] \[ dA = \frac{1}{14}\, du\, dv. \]
Next we rewrite the integrand: \[ \frac{-5x - 6y}{4x + 2y} = \frac{u}{v}. \]
Now that we have rewritten the integrand and found the Jacobian, we can finally compute: \[ \begin{aligned} \iint_{R} \frac{-5x - 6y}{4x + 2y}\, dA &= \int_{1}^{8} \int_{0}^{9} \frac{u}{v} \cdot \frac{1}{14}\, du\, dv \\[4pt] &= \int_{1}^{8} \left[ \frac{u^{2}}{28 v} \right]_{0}^{9} dv \\[4pt] &= \int_{1}^{8} \frac{81}{28 v}\, dv \\[4pt] &= \left[ \frac{81}{28} \ln v \right]_{1}^{8} \\[4pt] &= \frac{81}{28} \ln 8 - \frac{81}{28} \ln 1 \\[4pt] &= \frac{81}{28} \ln 8. \end{aligned} \]
Artifact 2
Problem
Evaluate \[ \iiint_{E} e^{z}\, dV, \] where \(E\) is the solid enclosed by the paraboloid \(z = 2 + x^{2} + y^{2}\), the cylinder \(x^{2} + y^{2} = 5\), and the \(xy\)-plane.
Solution:
Since both surfaces depend only on \(x^{2} + y^{2}\), cylindrical coordinates are the natural choice, with \(x^{2} + y^{2} = r^{2}\). Recognizing that circular structure is the part of this artifact that feels strongest to me.
In cylindrical coordinates the pieces become:
Cylindrical coordinates
\[ \begin{aligned} &\text{paraboloid: } z = 2 + r^{2}, \qquad \text{cylinder: } r = \sqrt{5}, \qquad \text{floor: } z = 0, \\[4pt] &dV = r\, dz\, dr\, d\theta. \end{aligned} \]
So the bounds are: \[ 0 \le \theta \le 2\pi, \qquad 0 \le r \le \sqrt{5}, \qquad 0 \le z \le 2 + r^{2}. \]
So the triple integral becomes: \[ \iiint_{E} e^{z}\, dV = \int_{0}^{2\pi} \int_{0}^{\sqrt{5}} \int_{0}^{2 + r^{2}} e^{z}\, r\, dz\, dr\, d\theta. \]
Integrating in \(z\) first: \[ \int_{0}^{2 + r^{2}} e^{z}\, r\, dz = r \left[ e^{z} \right]_{0}^{2 + r^{2}} = r \left( e^{2 + r^{2}} - 1 \right). \]
Next we integrate in \(r\). The substitution \(u = 2 + r^{2}\) gives \(r\, dr = \tfrac{1}{2}\, du\), so the antiderivative of \(r\, e^{2 + r^{2}}\) is \(\tfrac{1}{2} e^{2 + r^{2}}\), and the antiderivative of \(r\) is \(\tfrac{r^{2}}{2}\): \[ \begin{aligned} \int_{0}^{\sqrt{5}} r \left( e^{2 + r^{2}} - 1 \right) dr &= \left[ \frac{1}{2} e^{2 + r^{2}} - \frac{r^{2}}{2} \right]_{0}^{\sqrt{5}} \\[4pt] &= \left( \frac{1}{2} e^{7} - \frac{5}{2} \right) - \frac{1}{2} e^{2} \\[4pt] &= \frac{1}{2} \left( e^{7} - e^{2} \right) - \frac{5}{2}. \end{aligned} \]
Finally, integrating in \(\theta\): \[ \begin{aligned} \iiint_{E} e^{z}\, dV &= \int_{0}^{2\pi} \left[ \frac{1}{2} \left( e^{7} - e^{2} \right) - \frac{5}{2} \right] d\theta \\[4pt] &= 2\pi \left[ \frac{1}{2} \left( e^{7} - e^{2} \right) - \frac{5}{2} \right] \\[4pt] &= \pi \left( e^{7} - e^{2} - 5 \right). \end{aligned} \]
Essay
Your general approach to problems like this:
My general approach to problems like this is to start with the geometry first. That is because if it is necessary to do a change of coordinate systems, that is the first decision I make before proceeding forward. Looking at the geometry first also has the potential to reveal geometric tricks or shortcuts the problem may present, such as symmetry.
An evaluation of your strengths and areas for improvement in this section:
I would say I am conceptually strong at writing double integrals, especially when the Jacobian is involved. In Artifact 1, setting up \(u = -5x - 6y\) and \(v = 4x + 2y\) made the region easier to understand, and computing the Jacobian felt like a clear step. The part I could use some improvement on is the computation and remembering every factor in the coordinate system. In cylindrical coordinates, I have to be careful not to forget the extra \(r\), and in spherical coordinates I have to be careful with the extra integration factors. In general in math, I sometimes make basic algebra mistakes when I am moving too fast, and there are many of those when computing an integral. Because of the nature of the computation, a slightly incorrect answer to one numeric step could produce a drastically different answer at the end.
Describe how the artifacts you provided support your self-evaluation:
My self-evaluation is strongly supported by my artifacts. Artifact 1 shows that I can connect the boundary lines to a useful transformation and use the Jacobian correctly. Artifact 2 shows that I can recognize when cylindrical coordinates fit the geometry and then set up the bounds with the correct \(r\) factor in \(dV\). Because we had not done double and triple integrals in a while, the setup is where my conceptual understanding came back quickly, while the long computations are exactly where a small slip would have changed the result.
What are the critical pieces of a problem of this type?
I would list in the following order of importance: choosing the right coordinate system, setting proper bounds, and performing accurate computations.